Câu ví dụ
- thêm câu ví dụ: 1 2 3 4 5 6 7 8 9 10
- How would you change ptr to point to the second array element?
Làm thế nào để ptr trỏ sang phần tử thứ hai của mảng. - Array elements are accessed using their index number:
Array elements có thể thay đổi bằng cách sử dụng index number: - You access an array element by referring to the index number.
Bạn có thể access element của một array bằng chỉ số index number. - When you delete an array element, the array length is not affected.
Khi bạn xóa một phần tử mảng, chiều dài mảng không bị ảnh hưởng. - for (const auto &element: array) // element is a const reference to the currently iterated array element
for (const auto &item: arr) // item là 1 tham chiếu hằng đến phần tử hiện tại